home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-11 | 2.6 KB | 112 lines | [TEXT/CWIE] |
- // DModalBarsData -- data class for Everything
-
- #pragma once
-
- #include "AMDataDef.h"
-
- class LFileStream;
-
-
- const long idBars2 = 'Bar2';
- const long idStandard5 = 'Sta5';
- const long idGraphic4 = 'Gra4';
- const long idSlider2 = 'Sli2';
- const long idTickMarks2 = 'Tic2';
- const long idNonDirectional2 = 'Non2';
- const long idLittleArrows2 = 'Lit2';
- const long idSpinner2 = 'Spi2';
- const long idVolumeControl2 = 'Vol2';
- const long idJimSSlider2 = 'Jim2';
- const long idStandard6 = 'Sta6';
- const long idIndeterminate2 = 'Ind2';
- const long idChasingArrows2 = 'Cha2';
- const long idRectangle2 = 'Rec2';
- const long idRoundRect2 = 'Rou2';
- const long idBarberPole2 = 'Bar3';
- const long idRoundBarber2 = 'Rou3';
-
-
- //----------
- class DModalBarsData : public AMDataDef {
- public:
- DModalBarsData ();
- virtual ~DModalBarsData ();
-
- public:
- void CopyFrom (DModalBarsData* inOther);
- void ReadFromFile (LFileStream* inFile);
- void WriteToFile (LFileStream* inFile);
-
- public: // accessors
- UInt16 GetBars2 () const;
- void SetBars2 (UInt16 inValue);
-
- SInt16 GetStandard5 () const;
- void SetStandard5 (SInt16 inValue);
-
- SInt16 GetGraphic4 () const;
- void SetGraphic4 (SInt16 inValue);
-
- SInt16 GetSlider2 () const;
- void SetSlider2 (SInt16 inValue);
-
- SInt16 GetTickMarks2 () const;
- void SetTickMarks2 (SInt16 inValue);
-
- SInt16 GetNonDirectional2 () const;
- void SetNonDirectional2 (SInt16 inValue);
-
- SInt16 GetLittleArrows2 () const;
- void SetLittleArrows2 (SInt16 inValue);
-
- SInt16 GetSpinner2 () const;
- void SetSpinner2 (SInt16 inValue);
-
- SInt16 GetVolumeControl2 () const;
- void SetVolumeControl2 (SInt16 inValue);
-
- SInt16 GetJimSSlider2 () const;
- void SetJimSSlider2 (SInt16 inValue);
-
- SInt16 GetStandard6 () const;
- void SetStandard6 (SInt16 inValue);
-
- SInt16 GetIndeterminate2 () const;
- void SetIndeterminate2 (SInt16 inValue);
-
- SInt16 GetChasingArrows2 () const;
- void SetChasingArrows2 (SInt16 inValue);
-
- SInt16 GetRectangle2 () const;
- void SetRectangle2 (SInt16 inValue);
-
- SInt16 GetRoundRect2 () const;
- void SetRoundRect2 (SInt16 inValue);
-
- SInt16 GetBarberPole2 () const;
- void SetBarberPole2 (SInt16 inValue);
-
- SInt16 GetRoundBarber2 () const;
- void SetRoundBarber2 (SInt16 inValue);
-
-
- protected:
- UInt16 mBars2;
- SInt16 mStandard5;
- SInt16 mGraphic4;
- SInt16 mSlider2;
- SInt16 mTickMarks2;
- SInt16 mNonDirectional2;
- SInt16 mLittleArrows2;
- SInt16 mSpinner2;
- SInt16 mVolumeControl2;
- SInt16 mJimSSlider2;
- SInt16 mStandard6;
- SInt16 mIndeterminate2;
- SInt16 mChasingArrows2;
- SInt16 mRectangle2;
- SInt16 mRoundRect2;
- SInt16 mBarberPole2;
- SInt16 mRoundBarber2;
- };
-